Alachua
Baker
Bay
Bradford
Brevard
Broward
Calhoun
Charlotte
Citrus
Clay
Collier
Columbia
Miami-Dade
DeSoto
Dixie
Duval
Escambia
Flagler
Franklin
Gadsden
Gilchrist
Glades
Gulf
Hamilton
Hardee
Hendry
Hernando
Highlands
Hillsborough
Holmes
Indian River
Jackson
Jefferson
Lafayette
Lake
Lee
Leon
Levy
Liberty
Madison
Manatee
Marion
Martin
Monroe
Nassau
Okaloosa
Okeechobee
Orange
Osceola
Palm Beach
Pasco
Pinellas
Polk
Putnam
St. Johns
St. Lucie
Santa Rosa
Sarasota
Seminole
Sumter
Suwannee
Taylor
Union
Volusia
Wakulla
Walton
Washington
Your Estimated Florida Sales Tax:
$0.00
Understanding Florida Sales Tax
Florida imposes a state sales tax on the retail sale of tangible personal property and on the provision of taxable services.
The state sales tax rate is 6%. However, many counties in Florida levy an additional local discretionary sales surtax, which varies by county.
This calculator helps you estimate the total sales tax you would pay based on your purchase amount and the specific county in Florida where the transaction occurs.
How Florida Sales Tax Works:
State Sales Tax: A base rate of 6% applies statewide to most taxable goods and services.
Local Discretionary Sales Surtax: In addition to the state tax, most Florida counties impose a local surtax. This rate can range from 0.5% to 2.5%, depending on the county. Some counties may have different rates for different types of purchases (e.g., general vs. transportation). This calculator uses the general surtax rates.
Exemptions: Certain items and services are exempt from sales tax in Florida, such as most groceries, prescription medications, and certain educational materials. This calculator does not account for specific exemptions.
Maximum Tax: For certain items like motor vehicles and boats, the local discretionary sales surtax is capped at a certain amount, meaning you won't pay the full percentage on the entire price if it's very high. This calculator does not apply these caps.
Calculating Florida Sales Tax:
The total sales tax is calculated by adding the state sales tax rate to the applicable county's discretionary sales surtax rate.
The formula is:
Total Tax Rate = State Sales Tax Rate + County Discretionary Sales Surtax Rate
Let's say you are purchasing an item for $250.00 in Orange County, Florida.
The state sales tax rate is 6%.
Orange County has a discretionary sales surtax of 1.5%.
The total tax rate is 6% + 1.5% = 7.5%.
The sales tax amount would be: $250.00 × (7.5 / 100) = $250.00 × 0.075 = $18.75.
The total cost including tax would be $250.00 + $18.75 = $268.75.
This calculator provides an estimate. Always consult official Florida Department of Revenue resources or a tax professional for precise tax obligations.
function calculateSalesTax() {
var purchaseAmountInput = document.getElementById("purchaseAmount");
var countySelect = document.getElementById("county");
var resultValueSpan = document.getElementById("result-value");
var purchaseAmount = parseFloat(purchaseAmountInput.value);
var selectedCounty = countySelect.value;
var stateTaxRate = 6.0; // 6% state sales tax
var countySurtaxRate = 0.0;
// Florida County Discretionary Sales Surtax Rates (as of recent data, subject to change)
// These are general rates. Some counties may have different rates for specific items.
var countyRates = {
"ALACHUA": 1.0, "BAKER": 1.0, "BAY": 1.5, "BRADFORD": 1.0, "BREVARD": 1.5,
"BROWARD": 1.0, "CALHOUN": 1.0, "CHARLOTTE": 1.5, "CITRUS": 1.0, "CLAY": 1.5,
"COLLIER": 1.5, "COLUMBIA": 1.0, "DADE": 1.0, "DESOTO": 1.5, "DIXIE": 1.0,
"DUVAL": 1.5, "ESCAMBIA": 1.5, "FLAGLER": 1.5, "FRANKLIN": 1.0, "GADSDEN": 1.0,
"GILCHRIST": 1.0, "GLADES": 1.5, "GULF": 1.0, "HAMILTON": 1.0, "HARDEN": 1.0,
"HENDRY": 1.5, "HERNANDO": 1.5, "HIGHLANDS": 1.5, "HILLSBOROUGH": 1.5, "HOLMES": 1.0,
"INDIAN RIVER": 1.5, "JACKSON": 1.0, "JEFFERSON": 1.0, "LAFAYETTE": 1.0, "LAKE": 1.5,
"LEE": 1.5, "LEON": 1.0, "LEVY": 1.0, "LIBERTY": 1.0, "MADISON": 1.0,
"MANATEE": 1.5, "MARION": 1.5, "MARTIN": 1.5, "MONROE": 1.0, "NASSAU": 1.5,
"OKALOOSA": 1.5, "OKEECHOBEE": 1.0, "ORANGE": 1.5, "OSCEOLA": 1.5, "PALM BEACH": 1.0,
"PASCO": 1.5, "PINELLAS": 1.5, "POLK": 1.5, "PUTNAM": 1.0, "ST. JOHNS": 1.5,
"ST. LUCIE": 1.5, "SANTA ROSA": 1.5, "SARASOTA": 1.5, "SEMINOLE": 1.5, "SUMTER": 1.5,
"SUWANNEE": 1.0, "TAYLOR": 1.0, "UNION": 1.0, "VOLUSIA": 1.5, "WAKULLA": 1.0,
"WALTON": 1.5, "WASHINGTON": 1.0
};
if (countyRates.hasOwnProperty(selectedCounty)) {
countySurtaxRate = countyRates[selectedCounty];
} else {
// Default to 0 if county not found, though all are listed
countySurtaxRate = 0.0;
}
if (isNaN(purchaseAmount) || purchaseAmount < 0) {
resultValueSpan.textContent = "Invalid Input";
resultValueSpan.style.color = "#dc3545"; // Red for error
return;
}
var totalTaxRate = stateTaxRate + countySurtaxRate;
var salesTaxAmount = (purchaseAmount * totalTaxRate) / 100;
resultValueSpan.textContent = "$" + salesTaxAmount.toFixed(2);
resultValueSpan.style.color = "#28a745"; // Green for success
}