function mySelect(x, idDiv){
	document.getElementById(idDiv).value = x.options[x.selectedIndex].value;
	document.getElementById(idDiv).focus();
}