<html> <head> <script> function validar(obj) { tam = obj.value.length; if (tam==2 || tam==5) obj.value+='/'; } </script> </head> <body> <input type="text" onKeyUp="validar(this)"> </body> </html>