Add the Inet control to your form then add this code to a command button.

VB Code:
  1. Private Sub Command1_Click()
  2. Dim Source As String
  3. Dim pos As Long
  4.  
  5. 'get source of webpage
  6. Source = Inet1.OpenURL("http://www.yoursite.com/yourpage.html")
  7.  
  8. 'find where first <option> is
  9. pos = InStr(1, Source, "<option>")
  10.  
  11. Do Until pos = 0
  12.  
  13. Combo1.AddItem Mid$(Source, pos + 8, InStr(pos + 1, Source, "<") - (pos + 8))
  14.  
  15. 'find where next <option> is
  16. pos = InStr(pos + 1, Source, "<option>")
  17. Loop
  18.  
  19. End Sub