var ThisPage = window.location.href;
ThisPage = ThisPage.toLowerCase();

//on load
$(document).ready(function() {
    if (ThisPage.indexOf('\/formselector') > -1) {
        $('.company_info').show();
    }

    
});