ich hab mal versucht was zusammen zu schrieben aber funkt nicht :-(
<script type="text/javascript">
var sec = "15";
function refrech()
{
sec = sec - 1;
refrechString = ((sec < 10) ? "0" : "") + sec;
nextrefrech=document.getElementById('refrech');
nextrefrech.innerHTML=refrechString;
setTimeout("refrech()", 1000);
}
</script>