I have stumbled across a problem...

I need to select "UserID Only - No NT/AD" (bottom most selection in code below) which is a choice in a radio select. I've tried:

$IE.Document.getElementById("NTExchange").select = "None"
$IE.Document.getElementById("NTExchange").value = "None"

and a few others where I just guessed (Click, Checked). [Confused]

any ideas?

code:
 <table border="2" bgcolor="antiquewhite" bordercolor="brown" width="90%" height="140" cellpadding="5">
<tr>
<td align="left">
<b>Type of account to create</b><br><hr>
<input name="NTExchange" type="radio" style="border:none" value="NT" OnClick="ClearValues()" checked>NT/AD account only<br>
<input name="NTExchange" type="radio" style="border:none" value="Both" OnClick="ClearValues()" >NT/AD & Exchange Account<br>
<input name="NTExchange" type="radio" style="border:none" value="Exchange" OnClick="OpenSelect(1)" >Exchange Account Only
<input type="text" style="border:none" name="NTUserID1" size="10" value="" disabled>
<input type="hidden" name="NTUserID" size="10" value="">
<br>
<input type="hidden" name="NTDomainID" value="">
<input type="hidden" name="NTDomain" value="">
<input name="NTExchange" type="radio" style="border:none" value="None" OnClick="ClearValues()" >UserID Only - No NT/AD account
</td>
</tr>
</table>