/// <summary>
/// Hide our go button if js enabled and auto post back the select element.
/// </summary>
$(document).ready(function() { 
	/********************************************************************************/
	//Hide our go button if JS is enabled.
    $("form#offerLocationSelect input:submit").hide();
    
    //Post back the form when one of it's elements changes.
    $("form#offerLocationSelect select").change(
		function() {
			$("form#offerLocationSelect").submit();
		}
    );
    /********************************************************************************/
});
