Skip to main content

FINANCING

Let Big Country RV help you finance your next purchase! We work with many lenders to find the best option for you. Simply fill out the form below to see what you can be pre-approved for today!

* Required Field

Retail Consumer Credit Application


Salesperson

RV interested in:

Primary Applicant Information


 
 
 

 
(mm/dd/yyyy)
 
 
 

Primary Applicant Contact Details


 
 

 
 
 
 


Financing Details



Primary Applicant Employment Information


 
 
 
 
(ex $50,000)
 
 
 
 
 
 
 
 
(Easily unsubscribe at any time.)

$(function() { // unit details var qs = getUrlVars(); if (qs !== undefined && qs !== null) { if (qs['UnitId'] !== undefined && qs['UnitId'] !== null && qs['UnitId'] !== '') { var url = 'https://'+ window.location.hostname +'/rebraco/unitdetail/get?unitId=&accountId='; $.ajax({url: url, success: function(data){ if(data.Isnew){ $('#UnitNew option:contains("New")').prop('selected', true); } else{ $('#UnitNew option:contains("Used")').prop('selected', true); } $('#UnitYear').val(data.Year); $('#UnitMake').val(data.Brand); $('#UnitModel').val(data.UnitName); $('#StockNumber').val(data.StockNumber); $('.Location').val(data.LotId); $('.UnitType option[value="'+data.ProductId+'"]').prop('selected', true); $('#UnitTypeActual').val($(".UnitType option:selected").text()); }}); } } // populate internal list of salespeople and then clear the dropdown until a lot is selected var salespeople = []; $('.Salesperson option').each(function() { var $opt = $(this); if ($opt.attr('value') !== '') { salespeople.push({ name: $opt.attr('value'), userId: $opt.attr('data-user-id'), lotId: $opt.attr('data-lot-id'), email: $opt.attr('data-email') }); $opt.remove(); } }); $('.UnitType').change(function() { $('#UnitTypeActual').val($(".UnitType option:selected").text()); }); var locations = $('.Location option').length if (locations > 2) { $('.Location').change(function() { $('input[name=MultipleLocations]').val('Yes'); $('.Salesperson option').filter(function() { return $(this).attr('value') !== ''; }).remove(); var lotId = parseInt($('.Location option:selected').attr('data-lot-id'), 10); if (!isNaN(lotId)) { // add location specific salespeople to the dropdown var salespersonDropList = $('.Salesperson'); for (var i = 0; i < salespeople.length; i++) { if (salespeople[i].lotId == lotId) { salespersonDropList.append(''); } } } else { // the "Choose" item was selected } }); } else { $('.location-dropdown').hide(); $('.Salesperson option').filter(function() { return $(this).attr('value') !== ''; }).remove(); var lotId = parseInt($('.Location option:eq(1)').attr('data-lot-id'), 10); if (!isNaN(lotId)) { // add location specific salespeople to the dropdown var salespersonDropList = $('.Salesperson'); for (var i = 0; i < salespeople.length; i++) { if (salespeople[i].lotId == lotId) { salespersonDropList.append(''); } } } else { // the "Choose" item was selected } } }); //