var oldLoad = window.onload;
window.onload = function() {
    oldLoad();
    // Hide the information box
    document.getElementById("monthlysubscription").style.display = "none";
    // Make the link visible, the link that toggles visibility of the information box
    document.getElementById("how_does_business_subscription_work_clickable").style.display = "inline";
}