$(function(){
	$.validator.addMethod("phone-num", function(v, e) {
	        return this.optional(e) || /^[0-9\-\+\s]+$/i.test(v);
    }, "Phone/Fax number may contain only numbers, spaces, + and -.");
	$("#reg_form").validate();
});

