function checkDisplayOtherFavTeam()
{
	var team = document.getElementById('fav_team_id');
	var otherteam = document.getElementById('otherfavouriteteam');
	
	if(team.options[team.selectedIndex].value!=0)
	{
		otherteam.style.display = 'none';
	}
	else
	{
		otherteam.style.display = 'block';
	}
}