У меня получилось так:
<body onload="ly()">
<input type="text" value="3432424" id="cif" />
<script>
var input = document.getElementById("cif");
input.onkeyup = input.onchange= input.onpaste = function(){
this.value= this.value.replace(/\s+/g, "").match(/(\d{1,3})(?=((\d{3})*([^\d]|$)))/g).join(" ");
};
function ly(){
input.value = input.value.replace(/\s+/g, "").match(/(\d{1,3})(?=((\d{3})*([^\d]|$)))/g).join(" ");
}
</script>
</body>
Может есть более изящный способ
?