var OldShowID = null;
function ShowCity(cityID)
{
	if(OldShowID!=null)
		$("#"+OldShowID).hide();
	$("#AllCity").show();
	$("#"+cityID).show();
	OldShowID = cityID;
}
﻿
