var str='<table border="0" cellpadding="0" cellspacing="0"><tr><td><select name="age_sel" size="1" style="color:#3C4869; font-weight: normal; background-color:#AEC8F4; width=65; font-size: 10px;	font-family: Arial;">';
str +='<option value="18" selected>MIN';
for (i=18;i<60;i++) str+='<option value='+i+'>'+i+'</option>\n';
str +='</select></td>';
document.write(str);
str ='<td><select name="age1_sel" size="1" class="find" style="color:#3C4869; font-weight: normal; background-color:#AEC8F4; width=65; font-size: 10px;	font-family: Arial;">';
str +='<option value="60" selected>MAX</option>';
for (i=18;i<61;i++) str+='<option value='+i+'>'+i+'</option>\n';
str +='</select></td></tr></table>';
document.write(str);
