function goThereNow(selectElement) {
    var theLocation = selectElement.options[selectElement.selectedIndex].value;
    if (theLocation)
        top.main.location.replace(theLocation);
    else
        return false;
}
