Rather than question your motives or try to unpick what you're doing - I'm just going to answer the question in the title.
Given you have a type instance listElemType that represents the type argument that is to be passed to the List<> type at runtime:
var listInstance = (IList)typeof(List<>)
.MakeGenericType(listElemType)
.GetConstructor(Type.EmptyTypes)
.Invoke(null);
And then you can work with the list through it's IList interface implementation.
Or, indeed, you can stop at the MakeGenericType call and use the type it generates to use it in a call to Activator.CreateInstance - as in Daniel Hilgarth's answer.
Then, given a target object whose property you want to set:
object target; //the object whose property you want to set
target.GetType()
.GetProperty("name_of_property") //- Assuming property is public
.SetValue(target, listInstance, null); //- Assuming .CanWrite == true
// on PropertyInfo
If you don't the properties of the type represented by target, then you need to use
target.GetType().GetProperties();
To get all the public properties of that instance. However just being able to create a list instance isn't really going to be able to help you there - you'll have to have a more generic solution that can cope with any type. Unless you're going to be specifically targetting list types.
Sounds to me like you might need a common interface or base...