Ahhh, that's a good idea actually, and I don't see the drop-down being populated in HTML, so I guess that is my problem :(
ItemType1 is selected, which then calls a function which populates the drop down, city1.
I can see all of the values in the drop down, but it doesn't look like the values are anywhere in the HTML...now I am really confused.
Code:
<select size="1" name="itemType1" onChange="getCity('material1','findcity.php?itemType='+this.value)"><option selected
value=""></option> <option value="M">Material</option><option value="1">PH1</option> <option
value=2>PH2</option> <option value="3">PH3</option> <option
value=4>PH4</option> <\SELECT></select>
Code:
<span id="material1"> <select style="width: 158px;" onclick="this.style.width='340px';this.size='10'" onmouseout="this.style.width='158px';this.size=''" class="widthed" name="city1" id="city1"> </select> </span>
Comment