function cambiatipo(pag){
	if(document.frm_contacto.tipo.selectedIndex == 0) {
		document.location.href=pag+"tipo=personal";	
	} else if(document.frm_contacto.tipo.selectedIndex == 1) {
		document.location.href=pag+"tipo=empresa";
	} else {
		document.location.href=pag+"tipo=institucion";
	}
}
