jQuery(document).ready(function() {
	populate_select(jQuery('#f_vehiculezone_make'), makes);
	jQuery('#f_vehiculezone_make').change(function() {
		o = jQuery('#f_vehiculezone_model')
		o.find(':not(:first)').remove();
		populate_select(o, makes[this.value]);
	});
	jQuery('#f_vehiculezone_model').bind('change', function() {
		try {
			make  = jQuery('#f_vehiculezone_make' ).find('option:selected').attr('value') || '' ;
			model = jQuery('#f_vehiculezone_model').find('option:selected').attr('value') || '' ;
			window.location = 'http://www.passionperformance.ca/VTT/recherche/?make='+ make +'&model='+ model;
		}
		catch(e) {}
	});
	jQuery('#f_vehiculezone_make, #f_vehiculezone_model').removeAttr('disabled');
});

