function setText(a, b)
{
x = document.getElementById(a);
var innertext = "";
if (x)
	if ((b.options[b.selectedIndex].innerHTML.length > 16)&&(b.id != 'Categoria')&&(b.id != 'orden')){
		innertext = b.options[b.selectedIndex].innerHTML.substring(0,13) + '...';
	}else{
		innertext = b.options[b.selectedIndex].innerHTML;
	}
x.innerHTML = innertext;
}

function changeUrl(url,comboOrden)
{
	document.location.href = comboOrden.value;	

}
