function seleccionar_combo(list,codi)
{
  var i;
  i=0;
  while (i<list.length && list.options[i].value!=codi) i++;
  if (i==list.length) list.selectedIndex=0;
   else list.selectedIndex=i;
 
}
