// JavaScript Document

function gotourl( mySelect ) { 
	myIndex = mySelect.selectedIndex; 
	myValue = mySelect.options[myIndex].value; 
	window.location.href = myValue; 
} 
   
