<!--
function JumpToIt(list)
{
	var selection=list.options[list.selectedIndex].value
	if (selection !="none")
		location.href=selection
		
}
document.write('<form>');
document.write('<select size="1" onChange="JumpToIt(this)">');
document.write('<option value="none">Please Select A Town</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-banks.htm#burford">Burford</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-banks.htm#chippingcampden">Chipping Campden</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-banks-cirencester.htm">Cirencester</option>'); 
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-banks-cricklade.htm">Cricklade</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-banks.htm#fairford">Fairford</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-banks.htm#stow">Stow-on-the-Wold</option>');  
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-banks.htm#witney">Witney</option>');  
document.write('</select>');
document.write('</form>');
//-->






















