<?php

$input = [
		'success' => 1,
		'data' => [
				0 => [
						'Description' => 'Авангард',
						'DescriptionRu' => 'Авангард',
					],
				1 => [
						'Description' => 'Авіаторське',
						'DescriptionRu' => 'Авиаторское',
					],
				2 => [
						'Description' => 'Агрономічне',
						'DescriptionRu' => 'Агрономичное',
					],
				3 => [
						'Description' => 'Аджамка',
						'DescriptionRu' => 'Аджамка',
					],
				4 => [
						'Description' => 'Ананьїв',
						'DescriptionRu' => 'Ананьев',
					]
			]
	];

foreach($input['data'] as $id => $data) {
	print($data['Description'] . "\n");	
}