$(document).ready(function() {
	
	$('.add_cat').change(function(){ 
		$("#form").load('http://transfert-vrn.ru/add/cat.html', {cat: document.getElementById('add_cat').value});
		return false;
	});
	
	$('#city').live("click",function(){ 
		$("#area").load('http://transfert-vrn.ru/add/region.html', {city: document.getElementById('city').value});
		return false;
	});
	
		$('#region').live("click",function(){ 
		$("#street").load('http://transfert-vrn.ru/add/street.html', {region: document.getElementById('region').value});
		return false;
	});
	
});