// 2007, porocity, (c) darko pelikan


// EVENTS NEW, GET LOCATION
function getEvPlace(cityid) {
		var srch = cityid;
		
		$.ajax({ 	
			   type: "POST",
			   url: '/dynamics/checkplace/',
			   dataType: 'json',
			   data: 'search=' + srch,
			   global: 'false',
			   success: function(json) {
				   
			   var nums = json.data[0].nums;			   
			   var showInfo = '';
			   
			   if (nums > 0) {
				   showInfo += '<select name="event_loc" class="content_select">';
				   for(i=0;i<nums;i++) {
				   
				   showInfo += '<option value="'+json.data[i].id+'">'+json.data[i].loc+'</option>';
				   }
			   }
			   else {
				   showInfo += '<select name="event_loc" class="content_select" disabled>';
				   showInfo += '<option value="x">-----</option>';
			   } 
			   showInfo += '</select>';
			   showInfo += '&nbsp;<img src="/templates/current/des/'+js_des_theme+'/gfx/arrow_right.png" /> <a href="/adm/locations/new/">Location nicht vorhanden?</a>';
			   
			   $('span#loclist').html(showInfo);
				   
			   }
		});	
}
