// put even numbers for selection

document.write('<select name="website"  onChange="javascript:getvalues()" style="width:200px;" class="hotpicks">');



//Hottest Hairstyle and Makeup seen in Paris Fashion Week
if (dd_sel == 212)
	document.write('<option value="pg_paris_hottest_hair_1.asp" selected>Paris Fashion Week hairstlyes</option>');
else
	document.write('<option value="pg_paris_hottest_hair_1.asp">Paris Fashion Week hairstlyes</option>');

//Hot hairstyles and makeup seen at Milan Fashion Week
if (dd_sel == 200)
	document.write('<option value="pg_milan_hottest_hair.asp" selected>Milan Fashion Week hairstlyes</option>');
else
	document.write('<option value="pg_milan_hottest_hair.asp">Milan Fashion Week hairstlyes</option>');

//Hottest hairstyles seen at London Fashion Week
if (dd_sel == 191)
	document.write('<option value="pg_hottest_hairstyle_lfw.asp" selected>London Fashion Week hairstlyes</option>');
else
	document.write('<option value="pg_hottest_hairstyle_lfw.asp">London Fashion Week hairstlyes</option>');



document.write('</select>');
