function GoCMB (select,target)
  {
    var wert = select.options[select.options.selectedIndex].value;
    if (wert == "0")
    {
      return;
    }
    else
    {
       top.location.href = "/"+ target +"/" + wert + "/";
    }
  }
