(function($) {

jQuery.validator.addMethod("oneOrOther", 
	function(value, element, param) {
		// alert($(element).attr('id'));
		// alert(param.other);
		if ($(element).val())
			return true;
		else if ($(param.other).val())
			return true;
		else
			return false;
	},
	"Campo obbligatorio");

})(jQuery);