Это может помочь:
$(function () {
$('a.add_input').live('click', function (event) {
event.preventDefault();
var newDiv = $('.ai_service').find('div:first').clone();
newDiv.append('<a href="" class="remove_input">remove</a>')
newDiv.find('input').each(function () { $(this).val(''); });
$('div.ai_service:first div:last').before(newDiv);
});
$('a.remove_input').live('click', function (event) {
event.preventDefault();
$(this).closest('div').remove();
});
});