$(document).ready(function() {
	$(".qtybox").validation({
		type: "int",
		onError: function() {
			this.value = this.defaultValue;
		}
	});
});
