function getAction(){

	var ip = 'www.kheslc.com'
	switch (ip){
	case 'kheslcdev.khecorp.com':
		document.form.action = 'http://kheslcdev/search_results.html';
		break;
	case 'kheslcqa.khecorp.com':
		document.form.action = 'http://kheslcqa/search_results.html';
		break;
	case 'kheslcua.khecorp.com':
		document.form.action = 'http://kheslcua/search_results.html';
		break;
	case 'kheslc.khecorp.com':
		document.form.action = 'http://kheslc/search_results.html';
		break;
	case 'www.studentloanpeople.com':
		document.form.action = 'http://www.studentloanpeople.com/search_results.html';
		break;
	default :
		document.form.action = 'http://www.studentloanpeople.com/search_results.html';
	}
	
	return document.form.action;
}