function GotoURL(){
	window.location = this.value;
}

function SelectSetUp(){
	var el = document.getElementsByTagName('option');
	for(var i = 0; i < el.length; i++){
		el[i].onclick= GotoURL;
	}
}

window.onload = SelectSetUp;


