jQuery(function() {
	$('#wait_1').hide();
	$('#step_2').hide();
	$('#step_3').hide();

	$('#step_1').change(function(){
		$('#wait_1').show();
		$.ajax({
			url: "/cfc/ReplacementModels.cfc",
			data: {
				method: "getOEMModels",
				oem: $('#step_1').val()
			},
			type: "POST",
			dataType: "json",
			async: false,
			success: function(msg){
				$('#wait_1').hide();
				$('#step_2').html(msg).show();
				$('#step_3').hide();
			}
		});
	});

	$('#step_2').change(function(){
		$('#wait_2').show();
		
		$.ajax({
			url: "/cfc/ReplacementModels.cfc",
			data: {
				method: "getPTACProducts",
				oem: $('#step_1').val(),
				oem_model: $('#step_2').val()
			},
			type: "POST",
			dataType: "json",
			async: false,
			success: function(msg){
				$('#wait_2').hide();
				$('#step_3').html(msg).show();
			}
		});
		
	});
});
