$(document).ready(function(){
$('#add').click(function() {
var i = $('.text_add').size() + 2;
$('<input type="text" class="text_add new" name="_to_where_' + i + '" id="_to_where" >').fadeIn('slow').appendTo('._to_where');
i++;
});
});
$(document).on('click', '#add', function () {
$('<input>', {
type: 'text',
'class': 'text_add new',
name: '_to_where_' + ($('.text_add', this).length + 2),
id: '_to_where'
})
.fadeIn('slow')
.appendTo('._to_where');
});