function go_to(url)
{
   var w = document.myform.mylist.selectedIndex;
   var selected_text = document.myform.mylist.options[w].value;      
	window.location = url + selected_text
}
