function goToLink(form){
	if(form.options[form.selectedIndex].value != ""){
		location.href=form.options[form.selectedIndex].value;
	}
}

