// JavaScript Document


function selectVal(idSelect,val)
{
	if (val != null) {
 	 selec = document.getElementById(idSelect);
 	 for (i=0;i<selec.options.length;i++)
  	{
      if (selec.options[i].value == val)
          selec.options[i].selected = true;
  		}
	}
}