pretty sure that you have a couple of problems.
One is that you need to reference the variable correctly:
mySelect1 = document.getElementById("CompanyInfo7");
mySelect2 = document.getElementById("CCInfo7");
Then I think you need to use the selectedIndex.
mySelect2.selectedIndex = mySelect1.selectedIndex;