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

