function checkField(numonly) {
if (/[^0-9]/gi.test(numonly.value)) {
alert ("Only numbers are valid in this field. No spaces, symbols or letters.");
numonly.value = "";
numonly.focus();
return false;
} }