function goto(sel) {
    var val = sel.options[sel.selectedIndex].value;
    if (val) window.location.href = val;
    sel.selectedIndex = 0;
}

