Thank you for the quick replies!
Yes, andrew, I do indeed have a script for a ticking clock (I'll show it in a second), but the fact is that I gave those <option><select></select></option> a few values that I inserted into MySQL database, and now I'd basically get those things out of my database (I know how to get them out), but also use those values (e.g. -6) to adapt my clock.
My ticking clock script:
<script type="text/javascript">
function startTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
t=setTimeout('startTime()',500);
}
function checkTime(i)
{
if (i<10)
{
i="0" + i;
}
return i;
}
</script>
</head>
<body onload="startTime()">
<div id="txt"></div>
</body>