<!--
function JumpToIt(list)
{
	var selection=list.options[list.selectedIndex].value
	if (selection !="none")
		location.href=selection
		 
} 
document.write('<form>');
document.write('<select width="20" height="1" onChange="JumpToIt(this)">');
document.write('<option value="none">YOUR CHOICE OF COTSWOLDS SUPERMARKETS</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-supermarkets.htm#charlbury">Charlbury</option>');                                                                                                                                                                       
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-supermarkets.htm#cirencester">Cirencester</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-supermarkets.htm#fairford">Fairford</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-supermarkets.htm#lechlade">Lechlade</option>');                                                                
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-supermarkets.htm#stow">Stow-on-the-Wold</option>');                                                                                                                               
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-supermarkets.htm#tetbury">Tetbury</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/witney-supermarkets.htm">Witney</option>'); 
document.write('</select>');
document.write('</form>');
//-->