function changepage()	{		//Fe - Form element		fe = document.formname;		//SE - select element		se = document.formname.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;	}