function initJumpMenus() {
        // Turns all <select> elements with the 'jumpmenu' class into jump menus
        var selectElements = document.getElementsByTagName("select");
        for( i = 0; i < selectElements.length; i++ ) {
            // Check for the class and make sure the element has an ID
            if( selectElements[i].className == "jumpmenu" && document.getElementById(selectElements[i].id) != "" ) {
                jumpmenu = document.getElementById(selectElements[i].id);
                jumpmenu.onchange = function() {
                    if( this.options[this.selectedIndex].value != '' ) {
                        // Redirect
                        location.href=this.options[this.selectedIndex].value;
                    }
                }
            }
        }
    }
    
    
    
/* <script language="JavaScript" type="text/javascript">  
function redirect(site){  
 window.location= site  
}  
</script>  
  
&ltselect onchange="redirect(this.value)">  
 <option value="#">Where would you like to go?</option>  
 <option value="http://www.google.com">Google</option>  
 <option value="http://www.yahoo.com">Yahoo</option>  
 <option value="http://www.ask.com">Ask</option>  
</select> */