
$(document).ready(function(){

	$('#tip_camera').change(function() {
		var html = $.ajax({
			type: "POST",
			url: "gettarife.php",
			data: "tip_camera="+$('#'+$(this).attr('id')).val()+"&action=getEtaje",
			async: false
		}).responseText;
		
		if(html != '') $('#'+$(this).attr('id').replace('tip_camera', 'etaj')).empty().html(html);
	});
	$('#etaj').change(function() {
		var html = $.ajax({
			type: "POST",
			url: "gettarife.php",
			data: "etaj="+$('#'+$(this).attr('id')).val()+"&action=getPerioade",
			async: false
		}).responseText;
		
		if(html != '') $('#'+$(this).attr('id').replace('etaj', 'perioada')).empty().html(html);
	});
});