<!-- Begin - Locations
function formlowerlinks(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1 onChange="javascript:formlowerlinks()" style="background-color:#B4C5D5; color:#000000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10pt;">');
document.write('<option value="#">AW Repair Group Branches...');
document.write('<option value="locations_lincolnshire.htm">- Lincolnshire >>');
document.write('<option value="locations_s-yorkshire.htm">- South Yorkshire >>');
document.write('<option value="locations_nottinghamshire.htm">- Nottinghamshire >>');
document.write('</select>');
document.write('</form>');
// End -->