CSS スタイルを使用して、
関数 hiddenSelect(){
var slcList=document.getElementsByTagName('select');
var ipt ;
for(var i=0;i ipt = document.createElement("input ");
ipt.setAttribute('slcValue',slcList[i].value); // 選択した値を設定します
ipt.value = slcList[i].options[slcList[i].selectedIndex].text;
slcList [i].parentNode.appendChild(ipt);
slcList[i].style.display="none";