function nav(form) 
		{			
		var auswahl=form.dest.selectedIndex;
		if(form.dest.options[auswahl].value=="") return false;
		location.href=(form.dest.options[auswahl].value);
		auswahl = 0;
		}

