<!--
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="20" onChange="JumpToIt(this)">');
document.write('<option value="none">Please select a location</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#bourton">Bourton-on-the-Water</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#broadway">Broadway</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#charlbury">Charlbury</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#chippingnorton">Chipping Norton</option>');                                                                                                                                                                        
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#cirencester">Cirencester</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#moreton">Moreton in Marsh</option>');                                                                
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#stow">Stow-on-the-Wold</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/living-taxi.htm#tetbury">Tetbury</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/witney-taxi-services.htm">Witney</option>');   
document.write('</select>');
document.write('</form>');
//-->
