function showDealers( regionId )
{
	var ajaxLoader = document.createElement( 'img' );
	ajaxLoader.setAttribute( 'src', '/a/themes/harley/img/global/ajax-loader.gif' );
	ajaxLoader.setAttribute( 'width', 16 );
	ajaxLoader.setAttribute( 'height', 16 );
	ajaxLoader.setAttribute( 'alt', '' );
	ajaxLoader.setAttribute( 'class', 'ajaxLoader' );
	$('#pickDealer').append( ajaxLoader );

	var postData = 'regionId=' + regionId;

	$.ajaxSetup({
		  scriptCharset: "utf-8" ,
		  contentType: "application/x-www-form-urlencoded; charset=utf-8"
	});


	$.ajax(
		{
			data: postData,
			url: '/services/widgets/marketDealers/',
			type: 'POST',
			dataType: 'json',

			error: function( request, textStatus, errorThrown )
			{
				alert( 'An error has occured. Please try again.' );
				return true;
			},

			success: function( data )
			{
				$('.noJs').hide();
				$('.ajaxLoader').remove();
				//add dealers to list
				$('#pickDealer h3').html( data['regionName'] );
				$('#pickDealer p').html( 'Choisissez un concessionaire de la liste pour r&eacute;server votre essai' );
				$('#dealerList').html( data['listHtml'] );
				
			}
		}
	);

	return false;
}


$(document).ready(function() {
	$('#dealerList h4').hide();
	$('#dealerList ul').hide();
});

