// JavaScript Document

$(document).ready(function() {

	$("#step1").change(function() {
	
		$.ajax({
			type: "GET",
			url: "/custom/addons/search/step2.php",
			data: "step1="+ $("#step1").val(),
			success: function(e) {
				$("#step2").html(e);
			}
		});
	
	});

	$("#step2").change(function() {
	
		$.ajax({
			type: "GET",
			url: "/custom/addons/search/step3.php",
			data: "step2="+ $("#step2").val(),
			success: function(e) {
				$("#step3").html(e);
			}
		});
	
	});

});
