//directions
$(function(){
	$("#from_map").change(function(){
		$("#directions").empty();
		$("#end").val("Lenahowe Lodges @59.026890,-3.253915");
		var fromloc=$("#from_map").val();
		$("#start").attr("value", fromloc);
		$("#getdirections").click();
		})
	})
