window.onload=init;

function init(){
 var form=document.getElementById('songform');
 var list=form.getElementsByTagName('select')[0];
// var submit=form.getElementsByTagName('input')[0];
 //alert(submit);
 var a=[];
 for(i=3; i<9; i++){
  if(i%3==0) list.parentNode.appendChild(document.createElement('br'));
  a[i]=list.cloneNode(true);
  list.parentNode.appendChild(a[i]);
  list.parentNode.appendChild(document.createTextNode(' '));
 }
 var s = document.getElementById('songform').getElementsByTagName('select');
 for(i=0; i<s.length; i++) s[i].selectedIndex = def[i];
}

