Update label with textbox on change gridview

Update label with textbox on change gridview

Hi,
I have a gridview which contains 2 Item templates having textbox and label respectively.
 
Currently i have a textbox on change event, which adds the text entered in the textbox to the label.
Below is the IE developer markup of textbox:
 
  1. <input name="ctl00$ctl32$g_7e99e987_4340_46d1_83c7_0a5514900624$grdOne$ctl02$txtOthers" id="ctl00_ctl32_g_7e99e987_4340_46d1_83c7_0a5514900624_grdOne_ctl02_txtOthers" style="width: 187px;" onkeypress="if (WebForm_TextBoxKeyHandler(event) == false) return false;" onchange="javascript:setTimeout('__doPostBack(\'ctl00$ctl32$g_7e99e987_4340_46d1_83c7_0a5514900624$grdgrdOne$ctl02$txtOthers\',\'\')', 0)" type="text"/>
     
    <asp:Label ID="lblOthers" runat="server" Visible="false">
     
Is it possible to achieve the same using jquery? I mean text entered in textbox should be available in the label.
 
Thanks