//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";

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

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

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

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

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

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

//HERE are the SKU numbers for color number 2
skus2[0] = "               "; //please keep this blank as the first element
skus2[1] = "DP02S";
skus2[2] = "DP02M";
skus2[3] = "DP02L";

//HERE are the SKU numbers for color number 3
skus3[0] = "               "; //please keep this blank as the first element
skus3[1] = "DP04S";
skus3[2] = "DP04M";
skus3[3] = "DP04L";