// send order notification
$('input[id="submit-order"]').click(function() {
   $.post('/en/billing/sendBillingEmail', { order_id : $('input[name="o_id"]').val() }, function (data) {
       $('#order-form').submit();
   }, 'json');
});
