function dhtmlLoadScript(url){
   var e = document.createElement("script");
   e.src = url;
   e.type="text/javascript";
   document.getElementsByTagName("head")[0].appendChild(e);
}
function validarRegistro(identificacion){
        if(identificacion != 'Documento de identidad' && identificacion != ''){
            dhtmlLoadScript('ajax/validarRegistro.aspx?identificacion='+identificacion);
        }
}
function marcarTaza(valor){
    document.forma.taza.value = valor;
}