[jQuery] jqTransform + validate bassistance plugin

[jQuery] jqTransform + validate bassistance plugin

Hi, i've a problem with input radio validation.
I've two radio (accept and don't accept) for the privacy and obviously the users have to click "accept".
Here my code:
$("#formContactPage").validate({
            
                errorLabelContainer: $("p.error"),
                rules: {
                    denominazione: "required",
                    cognome: "required",
                    jtitle: "required",
                    comune: "required",
                    tel: "required",
                    email: {
                        required: true,
                        email: true
                    },
                    check_informativa: {
                        required: true
                    }
                },
                messages: {
                    denominazione: "Il campo denominazione &egrave; obbligatorio<br />",
                    cognome: "Il campo cognome &egrave; obbligatorio<br />",
                    jtitle: "Il campo job title &egrave; obbligatorio<br />",
                    comune: "Il campo comune &egrave; obbligatorio<br />",
                    tel: "Il campo telefono &egrave; obbligatorio<br />",
                    email: "Il campo email non &egrave; corretto<br />",
                    check_informativa: "Prima di procedere occorre accettare il consenso al trattamento dei dati personali<br />"
                }
            });
<form action="<?php echo $_SERVER['PHP_SELF'];?>" id="formContactPage" method="post">
...
...
....
<input type="radio" name="check_informativa" id="check_informativa_no" value="no"> <label for="check_informativa_no">Non accetto</label>
<input type="radio" name="check_informativa" id="check_informativa_si" value="si"> <label for="check_informativa_si">Accetto</label>
</form>
ale