- Here have two list field menu. First
brand
seconditem
- I want if we
select
brand
IBM
thatitem
will selectIBM
too - In other hand, if we
select
brand
HP
thatitem
will selectHP
too
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>