function SelectForm(frm)
	{
		var si = frm.selectedIndex;
		location.href = frm.options[si].value;
	}

//USED TO GREAT DYNAMIC FORM DROP-DOWN
function DrawForm()
{
	document.write('<select class="site_selector" onchange="SelectForm(this);">');
	document.write('<option >Select a different product</option>');
	document.write('<option value="forms_annuities.html">Annuities</option>');
	document.write('<option value="forms_college_savings.html">College Savings</option>');	
	document.write('<option value="forms_fixed_products.html">Fixed Products</option>');
	document.write('<option value="forms_life_insurance_of.html">Life Insurance</option>');
	document.write('<option value="forms_long-term_care.html">Long-Term Care Insurance</option>');
	document.write('<option value="forms_mutual_funds.html">Mutual Funds</option>');
	document.write('</select>');
}

