// JavaScript Document
function validacion(){
	
	politica = document.getElementById("politica");
   if (politica.checked==false){
	   alert('Debe aceptar la politica de privacidad');
	   return false;
   }

}