$.ajax - autocomplete - .live

$.ajax - autocomplete - .live

Hi

I have have written a web service that is called by the following jQuery code. The results of this call are applied to a text box that is on the first row of my inventory table.

  1.  $.ajax({
  2.             type: "POST",
  3.             url: "GetInventoryItems.asmx/GetInventoryItemsOnDivisionID",
  4.             dataType: "json",
  5.             data: "{}",
  6.             contentType: "application/json; charset=utf-8",
  7.             success: function(data) {
  8.                 $("input[name='tbTitle_1']").autocomplete({
  9.                     minLength: 0,
  10.                     source: data.d,
  11.                     focus: function(event, ui) {
  12.                         $("tbTitle_1']").val(ui.item.value);
  13.                         $('#tbSalesPrice_1').val(ui.item.Sale_Price);
  14.                         return false;
  15.                     },
  16.                     select: function(event, ui) {
  17.                         $('#tbTitle_1').val(ui.item.value);
  18.                         $('#tbSalesPrice_1').val(ui.item.Sale_Price);
  19.                         return false;
  20.                     }
  21.                 });
  22.             },
  23.             error: function(XMLHttpRequest, textStatus, errorThrown) {
  24.                 alert(textStatus);
  25.             }
  26.         });
 This code works perfectly.

However, my form has a function that adds new rows dynamically.

I need to apply .live to this somehow. I want this so that every tbTitle_? gets this autocomplete.  I just don't know how to do it. Getting even this code above working was a stretch to my humble (but growing) jquery skills.

How do I apply .live to this code?  Or, how would a recode this so that .live could be applied?