function add_entry_preview (field, value, max)
{
	if (field == 'entry[short_description]') 
	{
		if(value != '') 
		{
			laenge = value.length;
			if(laenge > max) 
			{
				$('entry[short_description]').value = value.substr(0,max);
			} 
			
			$('zeichen').innerHTML = max - $('entry[short_description]').value.length;
			
		} 
	}
}

function readCitys(city_id)
{

	alert('Hier jetz die Städte für BundeslandId ' + city_id + ' nachladen!?');

}
