//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] = "White";
firsts[2] = "Pink";
firsts[3] = "Purple";
firsts[4] = "Green";
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] = "Small";
seconds1[2] = "Medium";
seconds1[3] = "Large";
seconds1[4] = "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] = "Small";
seconds4[2] = "Medium";
seconds4[3] = "Large";
seconds4[4] = "XL";

//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] = "SC2150S";
skus1[2] = "SC2150M";
skus1[3] = "SC2150L";
skus1[4] = "SC2150XL";

//HERE are the SKU numbers for color number 2
skus2[0] = "               "; //please keep this blank as the first element
skus2[1] = "SC2151A/S";
skus2[2] = "SC2151A/M";
skus2[3] = "SC2151A/L";
skus2[4] = "SC2151A/XL";


//HERE are the SKU numbers for color number 3
skus3[0] = "               "; //please keep this blank as the first element
skus3[1] = "SC2152S";
skus3[2] = "SC2152M";
skus3[3] = "SC2152L";
skus3[4] = "SC2152XL";


//HERE are the SKU numbers for color number 4
skus4[0] = "               "; //please keep this blank as the first element
skus4[1] = "SC2154S";
skus4[2] = "SC2154M";
skus4[3] = "SC2154L";
skus4[4] = "SC2154XL";

//HERE are the SKU numbers for color number 5
skus5[0] = "               "; //please keep this blank as the first element
skus5[1] = "SC2156S";
skus5[2] = "SC2156M";
skus5[3] = "SC2156L";
skus5[4] = "SC2156XL";