function repopulateSecondary(formEl){
	 q_1_o = ["I would like to request a demo", "I need a social media strategy", "I want to develop a social media application", "I want to advertise on the Buddy Media Network", "I want to partner with and integrate AceBucks", "I want to monetize my application", "I want to create loyalty for my users"];
    q_1_v = ["I need a social media strategy", "I want to develop a social media application", "I want to advertise on the Buddy Media Network", "I want to partner with and integrate AceBucks", "I want to monetize my application", "I want to create loyalty for my users"];
    q_2_o = ["My AceBucks account", "Stores", "Referrals", "Tickets Program", "EZ Bucks", "Games"];
    q_2_v = ["My AceBucks account", "Stores", "Referrals", "Tickets Program", "EZ Bucks", "Games"];
    fm = $('.wpcf7-form')[0];
    selName = "secondQ";
    fm[selName].options.length = 0;
    
   if (formEl.selectedIndex == 1 || formEl.selectedIndex == 2) {
        q_ar_o = q_1_o;
        q_ar_v = q_1_v;
        if (formEl.selectedIndex == 2) {
            q_ar_o = q_2_o;
            q_ar_v = q_2_v;
        }
        document.getElementById("q2").className = 'show';
        
        for (x = 0; x < q_ar_o.length; x++) {
            fm[selName].options[x] = new Option(q_ar_o[x], q_ar_v[x]);
        }
    }
    else {
    
        document.getElementById("q2").className = 'hide';
    }
}

/*[select* q1 include_blank id:q1 "I want to work with Buddy Media" "I have a customer service question" "I have a PR/media related question" "I want to work for Buddy Media"]*/
