function emptyList( box ) {
	while ( box.options.length ) box.options[0] = null;
}

function addopt(box,nval)
{
option = new Option(nval,nval);
box.options[box.length] = option;
}

function relist(box) {
emptyList(box.form.besttime);
if (box.options[box.selectedIndex].value=="Saturday") {
addopt(box.form.besttime,'8am');
addopt(box.form.besttime,'9am');
addopt(box.form.besttime,'10am');
addopt(box.form.besttime,'11am');
addopt(box.form.besttime,'12pm');
} else {
addopt(box.form.besttime,'8am');
addopt(box.form.besttime,'9am');
addopt(box.form.besttime,'10am');
addopt(box.form.besttime,'11am');
addopt(box.form.besttime,'12pm');
addopt(box.form.besttime,'1pm');
addopt(box.form.besttime,'2pm');
addopt(box.form.besttime,'3pm');
addopt(box.form.besttime,'4pm');
addopt(box.form.besttime,'5pm');
}
return true;
}
