function change_faculty_select()
	{
		//Fe - Form element
		fe = document.faculty_select;
		//SE - select element
		se = document.faculty_select.selectname.options;
		//alert(se.selectedIndex);
	
		reload = se[se.selectedIndex].value;
		//use the alert for testing, uncomment the document.location line to do real work.
		//selecttest should be your 'empty' page
		//alert(reload);
		document.location = reload;
	}
