如何取得radio物件,點選後的值...(謝謝!)(編號:6319)

<%
if form1.option1.checked=true then

!--在這裡會出現錯誤訊息.."此處需提供物件"...各位高手,請幫我解答吧..謝謝..
type="蘋果"
elseif form1.option2.checked=true then
  type="橘子"

elseif form1.option3.checked=true then
   type="蓮霧"
end if   

%>
<form name=form1>
<input type=radio name="fruit" id="option1" value="蘋果">蘋果<input type=radio name="fruit" id="option2" value="橘子">橘子<input type=radio name="fruit" id="option3" value="蓮霧">蓮霧
</form>
我想取得點選以後的值,然後將值放在type裡,但如何取得點選後的值呢,還是有更好的方法呢...拜託你們了