function socJump()
{
	el = document.getElementById('socJumpSel');
	if(el.options[el.selectedIndex].value.match(/[^0-9]/)) {
		location.href = el.options[el.selectedIndex].value;
	} else {
		location.href = "/organisation/"+el.options[el.selectedIndex].value;
	}
}