{
cars: [
{
brand: 1,
model: 'xxx',
year: 2010
},
{
brand: 1,
model: 'yyy',
year: 2002
}
],
brands: {
{'1' : 'Toyota'},
{'2' : 'Audi'},
}
}
<div id="hm"></div>
listItem.click(function(){
var index = $(this).index();
$('#hm').text(list[index]+' (Номер индекса: '+index+')');
});