you are placing your rules add function inside the options object for the validate function which can't be done, just close the validate
var validator = $("#webform-client-form-53").validate({/* this is an object for all of the options settings and requires strict object syntax */}) // close function since you are using default settings
$("#edit-submitted-contact-first-name").rules("add", {
// rule object here
});