function openOtherSite(select){
    if(select.selectedIndex == null || select.options[select.selectedIndex].value == ""){
        return false;
    }
    window.location.href=select.options[select.selectedIndex].value;
    return true;
}
