document.write("<select style='background-color:#ffffff;border:1px solid;color:#003481;font-family:verdana;font-size:9px' name='quickAccess' onChange='javascript:gotoLink(this)'>\n");
document.write("<option value=''>- - - -Select- - - -</option>\n");
document.write("<option value='schedule.htm'>Schedule of Charges</option>\n");
document.write("<option value='applicablerates.htm'>Applicable Rates</option>\n");
document.write("<option value='atmlocator.php'>ATM Locator</option>\n");
document.write("</select>\n\n");
function gotoLink(selectbox){
var selection=selectbox.options[selectbox.selectedIndex].value;
	if (selection != "")
		document.location.href=selection;
}