Radio Button Validation
I have 6 radio buttons and one text box in a row.
<tr class="odd-row" align="center">
<td nowrap="nowrap" align="left">How satisfied are you with MasterCard’s
Implementation Process?</td>
<td><input type="radio" name="Q7_A_1" id="Q7_A_1" value="1" /></td>
<td><input type="radio" name="Q7_A_1" id="Q7_A_1" value="2" /></td>
<td><input type="radio" name="Q7_A_1" id="Q7_A_1" value="3" /></td>
<td><input type="radio" name="Q7_A_1" id="Q7_A_1" value="4" /></td>
<td><input type="radio" name="Q7_A_1" id="Q7_A_1" value="5" /></td>
<td><input type="radio" name="Q7_A_1" id="Q7_A_1" value="6" /></td>
<td><input type="text" name="Q7_B_1" id="Q7_B_1" maxlength="255" /></td>
</tr>
Like this I have 5 rows. when a radio button having value greater than 2 is selected then the textbox of the same row should become mandatory.This is applicable for all rows.
I want a generalized function for this.
If anybody know the solution for this please help.

