Step 1: hide the inputbox for the required field by eneting the following in the css
#field_fieldname {
display: none;
}
Step 2:
Now, in an independent html file create the select box u want. ALso create the following JS code
function field_copy()
{
document.sobi2EditForm.field_fieldname.value=document.test.select.value;
}
U will need to put the selectbox in a div and position it so that it takes the position of the original inputbox.
In the params for the selectbox, add the following onblur="field_copy()"
Step 3: find this in sobi.php
echo $addForm->showForm();
Ad the html code from the above created file here and save.
Step 4: And we're done
Ok, this might sound a little complicated, but if you know a little bit of JS and php, u'll get an idea of what i mean.
In any case, u can mail me on
coolbung@gmail.com. I might be able to help you.
Regards,
Ashwin