
$(document).ready(function(){
	loadSecondList();
	$('#advSearch #topSection').change(function() {
		loadSecondList();
	});
});


function loadSecondList() {
	oForm = document.advSearch;

	$.ajax({
		type: "GET",
		url: "../include/Ajax/getSections.asp",
		data: ({sectionId: oForm.topSection.value}),
		success: function(msg){
			$("select#secondSection").html(msg);

		},
		error: function(e){
			//$("#msg").html("There has been an error: " + e).removeClass().addClass("error");
		}
	});
}
