$.validator.setDefaults({ 
	errorPlacement: function(error, element) {
		return true;
	}
});

$(function() {
	$('#contact-form').validate();
	$('#comment-form').validate();
	$('#order-history-form').validate();
	
	$('#result-filter-form select').change(function() {
		$(this).parent('form').submit();
	});
});
