var fadeSpeed = 200;
$('#ajax-form select').change(function() {
ajaxMainFunction();
});
$('#ajax-form2 select').change(function() {
ajaxMainFunction2();
});
//////1
function ajaxMainFunction() {
$.ajax({
data: $('#ajax-form').serialize()
}).done(function(response) {
var $response = $(response);
$('#ajax-container').fadeOut(fadeSpeed);
setTimeout(function() {
$('#ajax-container').html($response.find('#ajax-container').html()).fadeIn(fadeSpeed);
}, fadeSpeed);
});
}
//////2
function ajaxMainFunction2() {
$.ajax({
data: $('#ajax-form2').serialize()
}).done(function(response) {
var $response = $(response);
$('#ajax-container2').fadeOut(fadeSpeed);
setTimeout(function() {
$('#ajax-container2').html($response.find('#ajax-container2').html()).fadeIn(fadeSpeed);
}, fadeSpeed);
});
}