Hi everybody.I have a form with a text field provided with a validation script, which allows the user only to enter values in the format 999999-9999. The script is places on the exit event.var myRegex = /\d{6}\-\d{4}/;var singleDigits = [0,1,2,3,4,5,6,7,8,9];If the format is not correct, the user wi...