$(function () {

	$("#state").change(function () {

		$(this).after("<span id='loading_indicator'>Loading...</span>");
			
		$.get("/2.0/search/cities_in_state_dropdown/" + $(this).val(),
		{},
		function (html)
		{
			if (html)
			{
				$("#city").replaceWith(html);
				$("#loading_indicator").remove();
				
			}
		});
	
	});
	
	$("#search-result-serial-holder").focus(function () {
		
		$(this).select();
	
	});
	
	if (sw_agency_options) {
	
		$("#funding_agency").autocomplete(sw_agency_options);	
	}
	
});
