function changePage (cbo) 
{
	var jumpto = cbo.options[cbo.selectedIndex].value;
	if (jumpto != "") 
	{
		self.location.href = jumpto
	}
	return true;
}