I have a list of city names running across the top of my spreadsheet starting with column B1.

Miami Dayton Detroit Milwaukee Houston Boston Phoenix St. Petersburg Pittsburgh Indianapolis Taos

I want to create a macro that finds *only certain cities* and deletes the five cells underneath that city name.
In English, it would be something like this.

Loop through this list (Detroit, Boston, Pittsburgh)
Delete the five cells under Detroit
Delete the five cells under Boston
Delete the five cells under Pittsburgh
End Loop

How would I do something like this? Thank you.