$(window).load( function(){

	// ajax request + callback function with onClick action setup
	$('#region').change(
		function() {
			if( typeof($('#region').val() != 'undefined') && (0 != $('#region').val()) ) {

				$.getJSON(
					'index.php?id=22&type=126&no_cache=1',
					{
						'tx_rhmtravel_pi3[mode]' : 'cities',
						'tx_rhmtravel_pi3[region]' : $('#region').val()
					},
					function(data) {
						if(data.output) {
							$(data.whatToChange).html(data.output);
							$('#city_box').show();
						};
					}
				);

			}
		}
	);
	
});