window.addEvent('domready',function(){
	
	var brand_id  = $('brand_id');
	if(brand_id){
		
		brand_id.addEvent('change',function(){
			
			$('result').load('?Event=GetModels&brand='+this.options[this.selectedIndex].value);
			/*var req = new Request.HTML({url:'?Event=GetModels&brand='+this.options[this.selectedIndex].value, 
				onSuccess: function(html) {
					$('result').set('text', '');
					$('result').adopt(html);
				},
				
				onFailure: function() {
					$('result').set('text', 'Запрос не удачный, попробуйте перевыдрать бренд.');
				}
			});
	
			req.send();
			*/
			
		});
		
		
	}	
	
		
	
	
});