function OnChange(dropdown)
{
    var myindex  = dropdown.selectedIndex
    var SelValue = dropdown.options[myindex].value
    var baseURL  = 'http://www.natrelleasia.com'
    top.location.href = baseURL;
    
    return true;
}