//DropDowns
var dd1 = "Please select the color";  //you can change this to match the required type of data
var dd2 = "Please select the size";   //you can change this to match the required type of data

//Colors
var firsts = new Array();
firsts[0] = "Color";
firsts[1] = "Pink";
firsts[2] = "Purple";
firsts[3] = "Green";
firsts[4] = "Yellow";
firsts[5] = "Blue";

//Sizes for each color
var seconds1 = new Array();
var seconds2 = new Array();
var seconds3 = new Array();
var seconds4 = new Array();
var seconds5 = new Array();

//SKU numbers for each size
var skus1 = new Array();
var skus2 = new Array();
var skus3 = new Array();
var skus4 = new Array();
var skus5 = new Array();

//HERE are the SIZES for color number 1
seconds1[0] = "Size"; 
seconds1[1] = "Medium";
seconds1[2] = "Large";
seconds1[3] = "XL";


//HERE are the SIZES for color number 2
seconds2[0] = "Size"; 
seconds2[1] = "Small";
seconds2[2] = "Medium";
seconds2[3] = "Large";
seconds2[4] = "XL";


//HERE are the SIZES for color number 3
seconds3[0] = "Size"; 
seconds3[1] = "Small";
seconds3[2] = "Medium";
seconds3[3] = "Large";
seconds3[4] = "XL";

//HERE are the SIZES for color number 4
seconds4[0] = "Size"; 
seconds4[1] = "Medium";
seconds4[2] = "Large";
seconds4[3] = "XL";
seconds4[4] = "";

//HERE are the SIZES for color number 5
seconds5[0] = "Size"; 
seconds5[1] = "Small";
seconds5[2] = "Medium";
seconds5[3] = "Large";
seconds5[4] = "XL";

//HERE are the SKU numbers for color number 1
skus1[0] = "               "; //please keep this blank as the first element
skus1[1] = "DF2251M";
skus1[2] = "DF2251L";
skus1[3] = "DF2251XL";


//HERE are the SKU numbers for color number 2
skus2[0] = "               "; //please keep this blank as the first element
skus2[1] = "DF2252S";
skus2[2] = "DF2252M";
skus2[3] = "DF2252L";
skus2[4] = "DF2252XL";


//HERE are the SKU numbers for color number 3
skus3[0] = "               "; //please keep this blank as the first element
skus3[1] = "DF2254S";
skus3[2] = "DF2254M";
skus3[3] = "DF2254L";
skus3[4] = "DF2254XL";

//HERE are the SKU numbers for color number 4
skus4[0] = "               "; //please keep this blank as the first element
skus4[1] = "DF2255M";
skus4[2] = "DF2255L";
skus4[3] = "DF2255XL";
skus4[4] = "";

//HERE are the SKU numbers for color number 5
skus5[0] = "               "; //please keep this blank as the first element
skus5[1] = "DF2256S";
skus5[2] = "DF2256M";
skus5[3] = "DF2256L";
skus5[4] = "DF2256XL";