X

6'x10' High Country Dump

2025 Alcom High Country 6x10 Dump Trailer with 2' Sides 

Standard Trailer Features and Upgrades

* All Aluminum Construction
* 16" O/C Floor Crossmembers
* 2"x6" Subframe Tubing (6x10)
* (2) 15000# Safety Chains
* Dexter Leaf Spring Axles
* Heavy Duty Diamond Plate Fenders w/Corner Steps
* 5000# Center Jack (6x10)
* Extruded Aluminum Decking
* 17" Tall Dump Body
* 6" Filler Board Slot
* Rear Swing Open Bar Doors
* DP Tongue Mount Storage Box (Hydraulic Storage)
* 12V Hydraulic Pump
* Front Hoist System
* Canvas Tarp System
* Recessed LED Marker Lights
* Limited Lifetime Warranty
* Ramp Kit
6'x10' High Country Dump
Price: $13,300 On Sale! $11,999
Silver - Dump
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 29592
VIN: 5WFBD1021SS029592
Condition: New
Year: 2025
Manufacturer: High Country
Model:
Length: 10'
Width: 6'
Height:
GVWR (lbs): 6,000
Weight (lbs): 1,952
Payload (lbs): 4,048
Features: Side Ramps, Tongue Box

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });