JQUERY TO ENABLE/DISABLE FUNCTION ON TEXT BOX VALUE CHANGE BASED ON CHECKBOXLIST.

JQUERY TO ENABLE/DISABLE FUNCTION ON TEXT BOX VALUE CHANGE BASED ON CHECKBOXLIST.

 <asp:CheckBoxList ID="chkIsSubjectToAnyOrder" RepeatDirection="Horizontal" runat="server"
                            Enabled="false">
                            <asp:ListItem Value="0" Text="am not" title="1.b.I am not subject to any order of any court or administrative agency disbarring, suspending, enjoining, restraining, or otherwise restricting me in the practice of  law."
                                style="font-weight: bold; font-style: italic;" onclick="MutExChkList(this);"></asp:ListItem>
                            <asp:ListItem Value="1" Text="am" title="1.b.I am subject to any order of any court or administrative agency disbarring, suspending, enjoining, restraining, or otherwise restricting me in the practice of  law.  If you are subject to any order or orders, explain fully in the space below."
                                style="font-weight: bold; font-style: italic;" onclick="MutExChkList(this);"></asp:ListItem>
                        </asp:CheckBoxList>
<div>
<asp:TextBox Width="98%" ID="txtOrderDescription" Enabled="false" runat="server"
                            MaxLength="30" ToolTip="1.c.Use this space to explain if you are subject to any order of any court or administrative agency disbarring, suspending, enjoining, restraining, or otherwise restricting you in the practice of  law."></asp:TextBox>
</div>