You can create an artificial grouping in the query used as the report's recordsource.
Select IIf(ChildAge >= 8 And ChildAge <=10, "Age 08-10", IIf(ChildAge >= 11 and ChildAge <= 13, "Age 11-13", "Age Other")) As AgeGroup, ....
Then in the report, group on AgeGroup.