function open_window(field){
	if (field.selectedIndex >0) 
	{
		var temp;
		temp = field.options[field.selectedIndex].value;
		window.open(temp,"newwin")
	}
}