Hi,

Venturing into the world of web programming.

i am trying to use a "Select menu" to navagate to a local html page after a selction has been made, i tried searching and came up with nothing.

HTML Code:
  <label for="select-choice-0" class="select">Select Customer:</label>
  <select name="select-choice-0" id="select-choice-1">
    <option value=""><a href="details.html">bj builders</option>
    <option value="">walkers</option>
    <option value="">hogans building</option>
    <option value="">QLD Electrical</option>
  </select>
this is the line i have been trying to get the page link to work in.
HTML Code:
  <option value=""><a href="details.html">bj builders</option>
thx
-toe