// JavaScript Document

function defaultCombos() {
  for (var i=0;i < arguments.length; i++) {
    var comboObj = document.getElementById(arguments[i]);
	if (comboObj) {
	  comboObj.selectedIndex=0;
	}
  }
}

