Possible Duplicate:
jQuery disable SELECT options based on Radio selected (Need support for all browsers)
I have two radio buttons
<html>
<input type="radio" class="status" name="status" checked="checked" value="New" />New
<input type="radio" class="status" name="status" value="Used" />Used
<select id="Insurance_type">
<option>Home Used Insurance1</option>
<option>Home New Insurance1</option>
<option>Home Used Insurance2</option>
<option>Home New Insurance2</option>
</select>
</html>
I need a Jquery script when I choose the New radio button, that will filter the drop down list. That I'll have only the new Insurance type.