function validateQty(FieldName) { 
	var theField = $('#' + FieldName)
	var theValue = theField.val();
	theValue = theValue.replace(/[^0-9]/gi, "");
	theField.val(theValue);
}
