// Gehezu - START

function Go (select) {
  var wert = select.options[select.options.selectedIndex].value;
  if (wert == "leer") {
    select.form.reset();
    return;
  }
	
	else {
  location.href = wert;
  select.form.reset();
  }
}

// Gehezu - Ende