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