function validaForm(id_form){
    ok = true;
    $('#' + id_form + ' [req]').each(function(){
        alert($(this).val());
        ok = false
    });
    return ok;
}
