You could produce a jquery object with a DOM for the data being passed back in the callback
$(html)
Then target the two inputs outside the main container and use .replaceWith() to replace the entire element
$("div#").replaceWith($(html).find("div#"));
$("clientID").replaceWith($(html).find("clientID"));
Shaun Humphries
2010-04-16 18:40:19