[jQuery] How to validate multiple fields with AJAX simultaneously before submit

[jQuery] How to validate multiple fields with AJAX simultaneously before submit


Hello,
I am working with Jquery's validate script and form script as well for
Ajax submits. I want to validate a credit card field against another
field with my ajax call, but the way the form is set up it only spits
one field per validation.
Any ideas or help?
Thanks in advance!
snippet:...
PrimaryCCType: {
            required: "#PrimaryCCRadio:checked"
            },
PrimaryCCNumber: {
            required: "#PrimaryCCRadio:checked",
remote: "../ajax/validateCreditCard.php"
            },