To go a step further from what Radek stated, you can make it very dynamic so the content editor can maintain the topics and emails associated with the topic. Simply create a Custom Table with 3 fields, ItemID (Primary Key), Topic (text), Email (text). Populate the table with data. Then on your field use a Select query and simply do
SELECT [Topic] AS [Name], Email AS [Value] FROM Your_CustomTable ORDER BY [TOPIC].