function getModelList(sel)
{
	$('model').options.length = 0;

	new Ajax.Request(
						'/finder/query/getModels/brandId/' + $(sel).value,
						{
							onSuccess: function( response )
							{
								var obj = $('model');
								eval( response.responseText );
							}
						}
					);
}