function pulldown_sel(pulldown, selec)
{
	var selecciones=new String(selec);

	var lista = selecciones.split(",");
	p=pulldown.options;
	for (i=0; i<p.length; i++)
	{
		for (x=0; x<lista.length; x++)
		{
			if (p[i].value==lista[x])
			{
				p[i].selected=true;
				break;
			}

		}
	}
return(false);
}

 
