basicamente sería una cosa así
Código HTML:
<html>
<head>
<script>
function startCrono(){
if (parseInt(document.forms[0].crono.value)<100){
setTimeout("aumentarTiempo()",1000);
}
}
function aumentarTiempo(){
document.forms[0].crono.value=parseInt(document.forms[0].crono.value)+1;
startCrono();
}
</script>
</head>
<body onLoad="startCrono()">
<form>
<input type="text" name="crono" value="1">
</form>
</body>
</html>