$(document).ready(function() { 
	/********************************************************************************/
    //Post back the form when one of it's elements changes.
    $("form#frmLocations select.locn").change(
		function() {
			$("form#frmLocations").submit();
		}
    );
    /********************************************************************************/
});

