I have a VB application with a webbrowser. I would like to populate a combobox on my app with the values from a specific combobox on a webpage in the browser.

The first step seems to be getting the values from the array in the web page. Here is some code from the webpage source:

Code:
<script type="text/javascript">
<!--
  var opts = new Array(5);
  var values = new Array(5);
  var clients = new Array()
  clients.name = 'clients'
  var clientsPro = new Array()
  clientsPro.name = 'clientsPro'
The 'clients' array has the values that i want to use in my application. How do get them?