function change_place(type) {
var content;
var obj = document.getElementById('location_detail');
//zobrazeni casti prahy
if (type == 'p') {
content = "Part: ";
}
//zobrazeni jednotlivych kraju
if (type == 'k') {
content = "Region: ";
}
obj.innerHTML = content;
}