$(document).ready(function()
{	
	var shops = [];
	var value = null;
	
	$('#takeCityBox').removeClass('out');

	value = $('#takeShop').val();
	$('#takeShop optgroup')
		.each(function()
			{								
				shops[$(this).attr('id')] = $(this).html();				
			})
		.remove();		
	
	$('#takeCity').bind('change', function(){
		$('#takeShop').empty().html(shops['city_' + $(this).val()]);
	}).triggerHandler('change');
	$('#takeShop').val(value);
	

	
});


$(document).ready(function()
{

	// Init pdBox
	$('.thickbox').pdBox({minWidth: 400});

});
