function Go (select) {
var wert = select.options[select.options.selectedIndex].value;
if (wert == "leer") {
select.form.reset();
return;
} else {
document.location.href = wert;
select.form.reset();
document.register.elements["titel"].blur();
document.infoliste.elements["title"].blur();
document.strassenliste.elements["title"].blur();
document.gruenliste.elements["title"].blur();
}
} 
