

$(document).ready(function() {
  $('#photo-upload-wrapper').eq(0).after('<a href="#" id="more-photos-link">Add another upload box...</a>');
  $('#more-photos-link').click(function() {
    $('#photo-upload-wrapper').append($('input[name="photos[]"]').eq(0).clone().val(''));
    if ($('input[name="photos[]"]').size() >= 10) $('#' + $(this).attr('id')).remove();
    return false;
  });
});