ColdFusion - Loop through the last 5 years http://stackoverflow.com/questions/5557619/coldfusion-getting-5-years-in-the-past-and-inserting-into-select
<cfset dtStart = #year(now())# />
<cfset dtToday = dtStart />
<cfoutput>
<ol>
<cfloop index="date" from="#dtToday#" to="#dtToday - 5#" step="-1">
<li>#date#</li>
</cfloop>
</ol>
</cfoutput>