If this is not what you want, it should be close ...
Give it a try:
Code:
<html>
<head>
<title>Respond</title>
<script type="text/javascript">
// From: http://www.webdeveloper.com/forum/showthread.php?t=218396
function ShowTimes(IDS,flag) {
var status = 'none';
if (flag) { status = 'block'; }
document.getElementById('timehide').style.display = status;
}
</script>
</head>
<body>
<span>Best way to reply:</span>
<input type="radio" name="reply" value="Email" id="reply_0" onchange="ShowTimes('timehide',false)"/> E-mail <BR />
<div style="margin-left:270px;">
<input type="radio" name="reply" value="Phone" id="reply_1" onchange="ShowTimes('timehide',true)"/>Phone
</div>
<br>
<div id="timehide" style="display:none">
<span>Best time to get hold of you:</span>
<select>
<option value="Any">Any</option>
<option value="06:00 - 10:00">06:00 - 10:00</option>
<option value="10:00 - 12:00">10:00 - 12:00</option>
<option value="12:00 - 14:00">12:00 - 14:00</option>
<option value="14:00 - 16:00">14:00 - 16:00</option>
<option value="16:00 - 18:00">16:00 - 18:00</option>
<option value="18:00 - 20:00">18:00 - 20:00</option>
</select>
</div>
</body>
</html>
Good Luck!
Bookmarks