Florida's base state sales tax rate is 6%. Local taxes may apply.
This can vary by county. Check your local county's tax rate.
Estimated Florida Auto Sales Tax
$0.00
Total Amount (Vehicle + Tax): $0.00
Understanding Florida Automobile Sales Tax
When purchasing a vehicle in Florida, you are subject to sales and use tax. This tax is calculated based on the purchase price of the vehicle and the applicable tax rates in the county where you register the vehicle. The state of Florida imposes a base sales tax rate, and counties may levy additional local option sales taxes.
How is Florida Auto Sales Tax Calculated?
The calculation involves two main components: the state sales tax and any applicable local option sales taxes. The total tax rate is the sum of these rates. The tax is then applied to the taxable purchase price of the vehicle.
The formula used is:
Sales Tax = (Vehicle Price * State Tax Rate) + (Vehicle Price * Local Option Tax Rate)
Florida's standard state sales tax rate is 6%. However, many counties have implemented a Local Option Tourist Development Tax or a Local Option Fuel Tax, which can add between 0.5% and 1.5% to the total tax rate. It's crucial to verify the exact combined tax rate for the county where you intend to register your vehicle.
For example, if a vehicle costs $25,000 and is purchased in a county with a 1.5% local option tax, the calculation would be:
Vehicle Price: This is the gross purchase price of the vehicle before any discounts or trade-in allowances are applied, unless specific exemptions apply.
Taxable Amount: Generally, the sales tax is applied to the purchase price of the vehicle. However, certain fees or taxes might be exempt. Consult the Florida Department of Revenue for specific guidance.
Registration: Sales tax is typically paid at the time of vehicle registration. You will need proof of sales tax payment or exemption to complete the registration process.
Used vs. New Vehicles: The sales tax rate generally applies to both new and used vehicles.
Exemptions: Certain individuals or organizations may be exempt from paying sales tax. These typically include specific government agencies, disabled veterans under certain conditions, and non-profit organizations.
This calculator provides an estimate based on the rates you input. Always consult official Florida Department of Revenue resources or a tax professional for definitive information regarding your specific purchase and tax obligations.
function calculateSalesTax() {
var vehiclePriceInput = document.getElementById("vehiclePrice");
var taxRateInput = document.getElementById("taxRate");
var localTaxRateInput = document.getElementById("localTaxRate");
var resultDiv = document.getElementById("result");
var finalAmountSpan = resultDiv.getElementsByClassName("final-amount")[0];
var totalAmountSpan = document.getElementById("totalAmount");
// Clear previous error messages
resultDiv.style.borderColor = '#dee2e6';
finalAmountSpan.style.color = '#28a745';
var vehiclePrice = parseFloat(vehiclePriceInput.value);
var stateTaxRate = parseFloat(taxRateInput.value);
var localTaxRate = parseFloat(localTaxRateInput.value);
// Validate inputs
if (isNaN(vehiclePrice) || vehiclePrice < 0) {
finalAmountSpan.textContent = "Invalid Price";
resultDiv.style.borderColor = 'red';
return;
}
if (isNaN(stateTaxRate) || stateTaxRate < 0) {
finalAmountSpan.textContent = "Invalid State Rate";
resultDiv.style.borderColor = 'red';
return;
}
if (isNaN(localTaxRate) || localTaxRate < 0) {
finalAmountSpan.textContent = "Invalid Local Rate";
resultDiv.style.borderColor = 'red';
return;
}
// Calculate combined tax rate
var combinedTaxRate = stateTaxRate + localTaxRate;
// Calculate sales tax
var salesTax = vehiclePrice * (combinedTaxRate / 100);
// Calculate total amount
var totalAmount = vehiclePrice + salesTax;
// Format and display results
finalAmountSpan.textContent = "$" + salesTax.toFixed(2);
totalAmountSpan.textContent = "$" + totalAmount.toFixed(2);
}