validate TextNumeric In Range
https://stackoverflow.com/questions/5809759/javascript-form-validation-numeric-range-min-max
JavaScript
function validateTextNumericInRange (textInputId) {
var value = parseInt(textInputId);
return (!isNaN(value) && value >= 3 && value <= 48);
}
window.alert(validateTextNumericInRange('30.00'));