This site is a (phonetic) dictionary that allows for regex searching. A quick introduction (or refresher) to regex can be found here
This site uses the ARPABET
To find all words ending in "tion": tion$
To find all words starting with "cl": ^cl
To find all words starting with "AA" and ending with "V": ^AA.*V$