Add number validation to a field that doesn't have number in the label
<!-- START code for number validation -->
<script>
$(document).ready(function() {
var fieldLabel = 'Your field';
ijQuery('input[name="' + base64_encode(fieldLabel) + '"]').addClass('checknumericvalue');
});
</script>
<!-- END code for number validation -->