 $(document).ready(function() {

//global vars  
var searchBoxes = $(".inputBlurb");   
var searchBox2 = $("#blurb");  
var searchBox2Default = "Type your blurb...";  

//Searchbox2 show/hide default text if needed  
searchBox2.focus(function(){  
    if($(this).attr("value") == searchBox2Default) $(this).attr("value", "");  
});  
searchBox2.blur(function(){  
    if($(this).attr("value") == "") $(this).attr("value", searchBox2Default);  
});

    $('#dropdown').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#dropdown li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#dropdown ul.children').fadeIn();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#dropdown li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#dropdown ul.children').fadeOut();  
                  
        }  
          
    );  

    $('#dropup2').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#dropup2 li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#dropup2 ul.children').fadeIn();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#dropup2 li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#dropup2 ul.children').fadeOut();  
                  
        }  
          
    );  

    $('#dropup3').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#dropup3 li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#dropup3 ul.children').fadeIn();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#dropup3 li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#dropup3 ul.children').fadeOut();  
                  
        }  
          
    );  
});

<!--
function getcitynow ( selectedtype )
{
  document.supportform.city.value = selectedtype ;
  document.supportform.submit() ;
}
-->