function setCombo(myCombo,val)	{
	for(i=0;i<myCombo.options.length;i++)	{
		if(myCombo.options[i].value==val) myCombo.options[i].selected=true;
	}	
}