/* Strip commas from form field */
function removeCommas(field) {
    field.value = field.value.replace(/,/g, "");
}
