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