ureech,
(function(){
var cache ={};
$('select[name="mark"]').change(function() {
var data0 = this.name + '=' + this.selectedIndex.value;
if(cache[data0]){
$('#brn').html(cache[data0]);
} else {
$.ajax({
type:"POST",
url:"/modules/mod_search_auto/ajax.php",
dataType:"html",
data: data0,
success: function(response) {
$('#brn').html(response);
cache[data0] = response;
// alert(cache[data0])
}
});
}
});
})();