Hola
Chuty
Otro código que te puede servir:
Código:
<html>
<head>
<script type="text/javascript">
function ponerCeros(obj) {
while (obj.value.length<10)
obj.value = '0'+obj.value;
}
</script>
</head>
<body>
<input type="text" onblur="ponerCeros(this)" />
</body>
</html>