you can use the event.keyCode with javascript
for example this will allow any characters but an underscore
so you may be able to do something like this for a submit
like if the ctrl key and g key are keypressed, then submit the form
just an idea, maybe check out a javascript forum for more information on the keyCode
<html>
<BODY>
<form>
This field will accept any character but an "_":<br>
<input type=text name=txtPostalCode onKeypress="if (event.keyCode == 95) event.returnValue = false;">
</form>
</body>
</html>