jQuery.validator.addMethod("password", function(value, element) {
	var x = true;
	if($('.pw1:first').val()!=$('.pw2:first').val())
	{
				   x = false;
	}                                             
	return x;
}, "Passwort not identical");

