cna anyone tell me how to use the Select = "selected" option for a simple dropdown. for example when someone chooses c it will have a code like <option selected="">c</option> (am I doing it right, well if you got a firebug some site with dropdowns offers that option) so can anyone tell me how that works. I will be using it for a purpose of just selecting parts on my array, well incorporating it... so yah, thanks guys
<html>
<body>
<select>
<option>a</option>
<option>b</option>
<option>c</option>
<option>d</option>
</select>
</body>
</html>