- Here have two list field menu. First
brandseconditem - I want if we
select
brandIBMthatitemwill selectIBMtoo - In other hand, if we
select
brandHPthatitemwill selectHPtoo
How to do that in javascript.
<select name="brand">
<option>Please Select</option>
<option>IBM</option>
<option>HP</option>
</select>
<select name="item">
<option>Please Select</option>
<option>IBM</option>
<option>HP</option>
</select>