﻿// JScript File
function SetDropDownStyle(dropDown) 
{
    dropDown.style.backgroundColor = dropDown.options[dropDown.selectedIndex].style.backgroundColor; 
    dropDown.style.color = dropDown.options[dropDown.selectedIndex].style.color;
}

