jQuery(document).ready(function() {
	jQuery('.aupair').blur(function(event){
		qty = jQuery(this).val()
		if ((qty % 2) != 0) {
			alert ('This product must be bought in multiples of 2');
			newVal = parseInt(qty) + parseInt(1);
			jQuery(this).val(newVal)
		}
	});
});