function valida_combo(objeto, msg)
{
	if (objeto.selectedIndex==0)
		{
		alert(msg);
		objeto.focus();
		return(false);
		}
	return(true);	
}
