	//change the program options according to the location selected
function updateOptions() {	
	var campusval = document.wform.location.selectedIndex;
   	var selected_campus = document.wform.location.options[campusval].text;
 	if (selected_campus == "Minneapolis, MN") {//if minneapolis is selected replace the html for the select dropdown with below
        document.getElementById('options').innerHTML = '<select name="program" id="program" onfocus="clear_prog();"><option value="" selected="selected" class="hide">Choose A Program</option><option value="GAM">Game Art &amp; Animation</option><option value="REC">Recording &amp; Music Tech.</option></select>';
         }
   if (selected_campus == "Madison, WI") {//if madison is selected replace the html for the select dropdown with below
       document.getElementById('options').innerHTML = '<select name="program" id="program" onfocus="clear_prog();"><option value="" selected="selected" class="hide">Choose A Program</option><option value="DAD">Digital Art &amp; Design</option><option value="EMB">Entertainment &amp; Media Bus.</option><option value="MST">Electronic &amp; A/V Systems</option><option value="VMG">Video &amp; Motion Graphics</option><option value="GAM">Game Art &amp; Animation</option><option value="REC">Recording &amp; Music Tech.</option></select>';
        }

}

