function getCars ()
local xml = xmlLoadFile("veh.xml")
if xml then
local n1 = xmlNodeGetValue(xmlFindChild(xml, "car", 0))
local n3 = xmlNodeGetValue(xmlFindChild(xml, "txd", 0)) and xmlNodeGetValue(xmlFindChild(xml, "dff", 0))
local row = guiGridListAddRow(CarsGrid)
guiGridListSetItemText(CarsGrid, row, col, n1, false, false)
guiGridListSetItemData(CarsGrid, row,col, n3)
end
end