function language_select_2(dropdown)
{
    var myindex  = dropdown.selectedIndex;
    var SelValue = dropdown.options[myindex].value;
    var baseURL  = SelValue;
    top.location.href = baseURL;
    
    return true;
}