$(document).ready(function(){
    
    $("#toggleinvoicebox").click(function () {
      $("#invoicebox").toggle();
    });

});