$(document).ready(function(){
    
	$('#make').change(function () {
		$('select#model').html('<option>Updating...</option>');
		var selected = $('#make option:selected').val();
		$.ajax({
			type: 'POST',
			url: '../ajax/?a=search_makeModel',
			data: 'selected='+selected,
			success: function(response){
				$('select#model').html(response);
			}
		});
	});
	
	if ( $("#detail_googlemap").length > 0 ) {
		googlemap_initialize() ;
	}
	
});

