function showCountry(id){
	if($("#country"+id).css("display")=="none"){
		$('#expandCountry'+id).html("[-]");
		$("#country"+id).show();
	}else{
		$("#country"+id).hide();
		$('#expandCountry'+id).html("[+]");
	}
}
