I have a query regarding Select tags option. plz any one solve through jQuery. Suppose i have two select tags, in the first select tags i have options of Languages and script and in the second tag of select i have option regarding languages & scripting. The problem is that if i select languages from 1st select tag than only languages option should be visible in the second tag. Like
<select id="Languages">
<option value="0">--Select--</option>
<option value="1">Languages</option>
<option value="2">Scripting</option>
</select>
<select id="Scripting">
<option value="0">--Select--</option>
<option value="1">C#</option>
<option value="2">VB</option>
<option value="3">PHP</option>
<option value="4">jQuery</option>
<option value="5">javascript</option>
</select>
Now if i select Language option the only C#, VB & PHP should be visible and all other options will be disables.