function makeURL() {
var type = document.form1.type[document.form1.type.selectedIndex].value;
var industry = document.form1.industry[document.form1.industry.selectedIndex].value;
var url = industry + type;
location = url;
}