Сам спросил- сам сделал :-)
//сформировал строку
html_text ='<tr bgcolor=silver id=\"row_'+nRow+'\"><td><td><input type =\"checkbox\" value='+nRow+' name=chbWork[] width=10px><td width=*><input class=\"nameWork\" name = nameWork[] type=\"text\" autocomplete=\"off\" size=40 id=\"nmWrk_'+nRow+'\">';
$('table[id="inputs"] tr').eq(nRowIndex).after($(html_text));
//описал действие автокомплита
$('.nameWork').autocomplete('lib/req_ajax.php?t=work',{
width: 600,
max: 100
});