<!--
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 COTSWOLD PUBS</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs.htm">Back To Cotswold Pubs</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-carpentersarms-fulbrook.htm">Carpenters Arms, Fulbrook</option>'); 
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-crownofcrucis.htm">The Crown of Crucis, Ampney Crucis</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-eliot_arms.htm">Eliot Arms, South Cerney</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-thebakersarms.htm">The Bakers Arms, Somerford Keynes</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-thetaverninn.htm">The Tavern Inn, Kemble</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-thethameshead.htm">The Thames Head, Kemble</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-thetunnelhouse.htm">The Tunnel House, Coates</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-wildduckatewen.htm">The Wild Duck, Ewen</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-wheatsheaf-crudwell.htm">The Wheatsheaf Inn, Crudwell</option>');
document.write('<option value="http://www.thecotswoldgateway.co.uk/pubs-kingsarms-stowonthewold.htm">The Kings Arms Inn, Stow on the Wold</option>');
document.write('</select>');
document.write('</form>');
//-->