function Cambiar(dropdown){
	var myindex  = dropdown.selectedIndex
	var SelValue = dropdown.options[myindex].value
	var baseURL  = SelValue
	//alert(baseURL);
	top.location.href = baseURL;
}
