
Elite Dance Academy LLC
(I'm reaching out)
Stay updated with studio news
Request a one-on-one lesson
Volunteer to assist in classes
Apply to work at Elite Dance
(I need to inform you)

Let your teacher know you'll miss class

Share your feedback with us

Update your dance history
Withdraw from recreational classes
(I'm ready for more)
Express interest in competition company

Request time off from company
Submit a company exit request
(I want the merch!)
Order an extra recital finale t-shirt
Order an additional recital program book
Order recital gifts for your dancer
Pre-order studio merchandise
Eileen's form to place kids in dances
Get class recommendations for your dancer
Submit a repair or maintenance request
Let your teacher know you'll be absent from class.
Fill out the form below to request a private lesson. Once submitted, this form will be forwarded to the requested teacher. If the teacher does not respond within the next three business days, please contact the office directly.
Your feedback helps us improve. You may remain anonymous.
Stay updated with news, events, and class info.
Update your dance history for our records.
This form is for additional Finale T-Shirts only. Please fill out one form per additional shirt requested.
For tracking purposes, the total balance due will automatically be added to your portal with a 5% convenience fee. You may avoid the portal convenience fee by paying before the next draft with either cash, check, or Venmo: @EliteDance70433
Every recital family gets 1 Recital Program Book included. Use this form to order additional copies. $25 per extra book.
For tracking purposes, the total balance due will automatically be added to your portal with a 5% convenience fee. You may avoid the portal convenience fee by paying before the next draft with either cash, check, or Venmo: @EliteDance70433
Please Note: This is a "REQUEST" form. We will do our VERY BEST to accommodate your request. However, due to (1) the large company (2) the amount of rehearsals and choreography which need to be completed in a short time (3) and the large number of requested days off that we receive for each and every holiday & weekend, we cannot guarantee that the dates you've requested off will be clear of rehearsals, choreography, or other dance related events. The schedule is based upon when the MOST MEMBERS OF THE COMPANY ARE AVAILABLE.
As a reminder, & as per your Company Guidelines, students absent for mandatory choreography or rehearsals may be taken out of missed/rehearsed choreography. Students absent for mandatory choreography or rehearsals are required to do a private lesson to learn changes or new choreography. Additionally, if you plan to request off (and are absent for) dates on which the schedule has already been set and emailed to everyone, please also plan to schedule a private lesson.
Please Note: Elite Dance assumes company members will remain in perpetuity. For class availability and enrollment purposes, Elite Dance will draft the Fall Early Registration Fee, September & June Tuition according to the draft schedule on June 1st. If you choose not to continue your participation on the Elite Dance Competitive Team, it is MANDATORY that you fill out this form to avoid competitive draft charges.
This form is intended to withdraw a student from Elite Dance.
Two weeks notice from the 1st of the month is required to discontinue classes for the following month. Anyone providing withdrawal notice AFTER the 15th of the month will be responsible for all tuition fees due and owing for the following month according to the school draft schedule. Withdrawal must be done in person or by email. A parent or guardian's signature must be present on this form to be considered valid. Additionally:
If withdrawing:
* There are no refunds. If a student drops after prepayment, any remaining credit will be considered an Elite Dance credit good for future fees incurred. No cash refunds. No exceptions.
* In months of October or November:
eligible to receive the 2nd costume deposit ONLY in the form of an in house credit to be used toward future fees IF costumes have not yet been ordered. There are NO cash refunds. No exceptions.
* 1st Costume deposit is non refundable regardless of withdrawal date. 1st & 2nd Recital Fee are non refundable regardless of withdrawal date.
* The remaining balance will be drafted at the time of withdrawal and the account adjusted accordingly.
* Date of withdrawal will be considered the date this form is received by the office.
Please fill out one form per person. All options below with a red asterisk are required. If the option does not apply to you, please choose "N/A" and place a ZERO in the quantity box. PLEASE DOUBLE CHECK YOUR SELECTIONS AND SIZES BEFORE SUBMITTING THIS FORM.
For tracking purposes, the total balance due will automatically be added to your portal with a 5% convenience fee. You may avoid the portal convenience fee by paying before the next draft with the payment form of your choice.
This form is intended to guide the parent in choosing the proper classes in which to enroll their dancer for the next dance year. Your main teacher has personally recommended these classes for you.
Use the information on this form to register directly through the Elite Dance App or log in to your customer portal at www.EliteDanceAcademyLLC.com. Should you have any questions, please don't hesitate to contact us directly.
Eileen's form to place kids in dances (up to 8).
This form is an interest ONLY form. Should your child be chosen for company, this does not guarantee your dancer will be asked to do a solo, duet, or trio. This also does not guarantee any specific number of small or large groups. Elite Dance does not accept any requests for groups. Students will be placed where they will be the most successful. This form serves two purposes: (1) To provide you with a better opportunity to budget for your competition year and (2) to give you the opportunity to make your voice heard about your general competition preferences in lieu of a personal meeting. Please fill out one form per student. This form is due no later than MONDAY, JUNE 16th, 2025.
Keep in mind fees associated with each dance:
* Costume
* Choreography
* Competition Fees
* Private Lessons (if applicable)
* Possible Outside Choreography fees or Workshops, which may include fees higher than that of Elite Dance
For our more advanced dancers, we like to offer additional performance and training opportunities. These often involve additional travel to optional conventions & competitions. In order to place dancers in duet/trio and group choreography accordingly, please let us know how committed you would like to be for the upcoming dance year. Additionally, you will also be able to specify your level of interest in the Elite Dance Travel Team below.
PLEASE NOTE: Interest in the TRAVEL TEAM does not guarantee placement.
Are you interested in assisting classes? If so, then you've come to the right place! Assistants are an important part of classes at Elite Dance. Assistants help classes run smoothly and ensure that every child gets that special individual attention they deserve. In addition, class assistants build self confidence, create special bonds with teachers and students alike, and have a GREAT TIME assisting the teacher with class. We are so excited to add you to our list of Very Important People :-)
Apply to work at Elite Dance Academy.
Order recital gifts for your dancer.
Submit a repair or maintenance request for the studio or building.
Toggle which forms are visible to parents on the website. Hidden forms are still accessible in Admin mode.
Create a new Google Sheet (e.g. "EDA Form Submissions").
Go to Extensions → Apps Script. Delete default code, paste the script below, click Save.
Click Deploy → New deployment. Type: Web app, Execute as: Me, Access: Anyone. Deploy and copy the URL.
function doPost(e) {
var lock = LockService.getScriptLock();
lock.tryLock(10000);
try {
var data = JSON.parse(e.postData.contents);
var ss = SpreadsheetApp.getActiveSpreadsheet();
// Handle visibility save
if (data.action === 'saveVisibility') {
var vSheet = ss.getSheetByName('Visibility');
if (!vSheet) { vSheet = ss.insertSheet('Visibility'); }
vSheet.clear();
vSheet.getRange(1,1).setValue(JSON.stringify(data.visibility));
return ContentService.createTextOutput(JSON.stringify({result:'ok'})).setMimeType(ContentService.MimeType.JSON);
}
var sheet = ss.getSheetByName(data.formName);
if (!sheet) {
sheet = ss.insertSheet(data.formName);
var h = ['Timestamp'].concat(Object.keys(data.fields));
sheet.appendRow(h);
sheet.getRange(1,1,1,h.length).setFontWeight('bold').setBackground('#f0f0f0');
}
var headers = sheet.getRange(1,1,1,sheet.getLastColumn()).getValues()[0];
var row = [];
for (var i=0;i<headers.length;i++) {
row.push(headers[i]==='Timestamp' ? new Date().toLocaleString() : (data.fields[headers[i]]||''));
}
var ex = new Set(headers);
for (var k in data.fields) {
if (!ex.has(k)) { headers.push(k); row.push(data.fields[k]);
sheet.getRange(1,headers.length).setValue(k).setFontWeight('bold').setBackground('#f0f0f0'); }
}
sheet.appendRow(row);
return ContentService.createTextOutput(JSON.stringify({result:'ok'})).setMimeType(ContentService.MimeType.JSON);
} catch(err) {
return ContentService.createTextOutput(JSON.stringify({result:'error',message:err.toString()})).setMimeType(ContentService.MimeType.JSON);
} finally { lock.releaseLock(); }
}
function doGet() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var vSheet = ss.getSheetByName('Visibility');
if (vSheet && vSheet.getRange(1,1).getValue()) {
return ContentService.createTextOutput(JSON.stringify({status:'ok',visibility:JSON.parse(vSheet.getRange(1,1).getValue())})).setMimeType(ContentService.MimeType.JSON);
}
return ContentService.createTextOutput(JSON.stringify({status:'ok',visibility:null})).setMimeType(ContentService.MimeType.JSON);
}