void ReloadGroupNames()
 {
     for (int k = 0; k < groupNames.Length; k++)
     {
         int dc = _decorator.GetCountryDecoratorCount(k);
         if (dc > 0)
         {
             groupNames [k] = k.ToString() + " (" + dc + " decorators)";
         }
         else
         {
             groupNames [k] = k.ToString();
         }
     }
 }