$(function() {
  $('.showUpload').click(function () {
    $(this).parent().find('form').show();
    $(this).hide();
  });
});

