關於select物件的問題(編號:5462)

<select name=txtcust_rkind>
<option value="月結">月結</option>
 <option value="現繳">現繳</option>
 <script language=vbscript>
 if form1.txtcust_rkind.value="<%=rstobj("Cust_rkind")%>" then
   form1.txtcust_rkind.SelectedIndex=0
 end if 
 </script>
 </select>
一個下拉式的選單...我從資料庫中抓取資料..我希望如果資料庫裡的資料是月結..下拉式的選單應顯示月結(然後拉下來後是月繳),如果資料庫裡的資料是月繳,下拉式的選單應顯示月繳(然後拉下來後是月結),請問如何解決這個問題呢...