$(document).ready(function() {
  $('div#gota').hide();
  $('#subscribe-me').click(function(){
    $('div#gota').toggle();
  });
});