function accion(obj)
	{
		divi=obj.options[obj.selectedIndex].value;
		$('contenteventos').childElements().each(function(nodo)
			{
				if (divi=='all') 
					{ 
						$(nodo).show(); 
					} else {
						if(divi==$(nodo).id) 
							{
								$(nodo).show();
							} else {
								$(nodo).hide();
							}
					}
			});
	}
