
 function goto_worldwidepg()
    {
        var listval = document.getElementById("list_worldwide").selectedIndex;
        var pgurl = window.location.href;
         
       if (listval == 1)
                window.location.href ='/index.html';                
             else if (listval == 2)
                window.location.href='/fr/index.html';
            else if (listval == 3)
                    window.location.href='/hi/index.html';
            else if (listval == 4)
                window.location.href='/ru/index.html';
            else if (listval == 5)
                 window.location.href='/sp/index.html';
                 
        
    }
 
 $(document).ready(function(arg) {  
	$('#list_worldwide').msDropDown();
 })