$(document).ready(function(){	
	if($('#drop')){
	
		var dropdown = $('#drop');
		var selected = $('#text');
		
		$('.bumb a').click(function(){
			dropdown.slideToggle('fast');
		});
		
		$('a', dropdown).click(function(){
		
			textselectat = $(this).text();
			
			dropdown.slideUp('fast');
			selected.html(textselectat);
			
			$('#zona').val($(this).attr('name'));
			
			$.get('http://www.pensiuni-az.ro/includes/app.php', { zona: $(this).attr('name')} , function(data) {
			  $('#drop1').html(data);
			  localitate();
			});

			return false;
		});
		dropdown.hover(function(){}, function(){ dropdown.slideUp('fast');});
	}
	
function localitate(){
	if($('#drop1')){
	
		var dropdown = $('#drop1');
		var selected = $('#text1');
		
		$('.bumb1 a').click(function(){
			dropdown.slideToggle('fast'); 
		});
		
		$('a', dropdown).click(function(){
		
			textselectat = $(this).text();
			
			dropdown.slideUp('fast');
			selected.html(textselectat);
			
			$('#localitate').val($(this).attr('name'));
			
			return false;
		});
		dropdown.hover(function(){}, function(){ dropdown.slideUp('fast');});
	}
}
	
});

$(document).ready(function(){	
	if($('#drop2')){
	
		var dropdown = $('#drop2');
		var selected = $('#text2');
		
		$('.bumb2 a').click(function(){
			dropdown.slideToggle('fast'); 
		});
		
		$('a', dropdown).click(function(){
		
			textselectat = $(this).text();
			
			dropdown.slideUp('fast');
			selected.html(textselectat);
			
			$('#judet').val($(this).attr('name'));
			
			return false;
		});
		dropdown.hover(function(){}, function(){ dropdown.slideUp('fast');});
	}
});
